home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / game / patch / WHDIDemos.lzh / Mirage_Prime90.lha / Mirage Prime90 Install / Install next >
Text File  |  2000-11-26  |  3KB  |  163 lines

  1. ;****************************
  2.  
  3. (set #readme-file "README")    ;name of readme file
  4. (set #cleanup "")        ;files to delete after install
  5. (set #last-file "disk.1")    ;last file the imager should create
  6.  
  7. ;****************************
  8. ;----------------------------
  9. ; checks if given program is installed, if not abort install
  10. ; #program - to check
  11.  
  12. (procedure P_ChkRun
  13.   (if
  14.     (= 0 (run ("cd SYS:\nWhich %s" #program)))
  15.     ("")
  16.     (abort
  17.       (cat
  18.     "You must install \"" #program "\" first!\n"
  19.     "It must be accessible via the path.\n"
  20.     "You can find it in the WHDLoad package."
  21.       )
  22.     )
  23.   )
  24. )
  25.  
  26. ;****************************
  27.  
  28. (if
  29.   (exists #readme-file)
  30.   (if
  31.     (= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
  32.     ("")
  33.     (run ("SYS:Utilities/More %s" #readme-file))
  34.   )
  35. )
  36.  
  37. (set #program "WHDLoad")
  38. (P_ChkRun)
  39.  
  40. (set #program "RawDIC")
  41. (P_ChkRun)
  42.  
  43. (if
  44.   (= @user-level 2)
  45.   (
  46.     (set #CI_drive
  47.       (askchoice
  48.     (prompt "Select source drive for diskimages")
  49.     (default 0)
  50.     (choices "DF0:" "DF1:" "DF2:" "DF3:")
  51.     (help @askchoice-help)
  52.       )
  53.     )
  54.     (select #CI_drive
  55.       (set #CI_drive "DF0:")
  56.       (set #CI_drive "DF1:")
  57.       (set #CI_drive "DF2:")
  58.       (set #CI_drive "DF3:")
  59.     )
  60.     (set #ignore " IGNOREERRORS")
  61.   )
  62.   (set #CI_drive "DF0:")
  63.   (set #ignore "")
  64. )
  65.  
  66. (set @default-dest
  67.   (askdir
  68.     (prompt ("Where should \"%s\" be installed?\nA drawer \"%s\" will be automatically created." @app-name @app-name))
  69.     (help @askdir-help)
  70.     (default @default-dest)
  71.     (disk)
  72.   )
  73. )
  74. (set #dest (tackon @default-dest @app-name))
  75. (if
  76.   (exists #dest)
  77.   (
  78.     (set #choice
  79.       (askbool
  80.         (prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted?" #dest))
  81.         (default 1)
  82.         (choices "Delete" "Skip")
  83.         (help @askbool-help)
  84.       )
  85.     )
  86.     (if
  87.       (= #choice 1)
  88.       (run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
  89.     )
  90.   )
  91. )
  92. (makedir #dest
  93.   (help @makedir-help)
  94.   (infos)
  95. )
  96.  
  97. ;----------------------------
  98.  
  99. (if
  100.   (exists ("%s.newicon" @app-name))
  101.   (set #icon
  102.     (askchoice
  103.       (prompt "\nWhich icon would you like to install?\n")
  104.       (default 0)
  105.       (choices "Normal" "NewIcon")
  106.       (help @askchoice-help)
  107.     )
  108.   )
  109.   (set #icon 0)
  110. )
  111. (select #icon
  112.   (set #icon ("%s.inf" @app-name))
  113.   (set #icon ("%s.newicon" @app-name))
  114. )
  115. (copyfiles
  116.   (help @copyfiles-help)
  117.   (source #icon)
  118.   (newname ("%s.info" @app-name))
  119.   (dest #dest)
  120. )
  121. (copyfiles
  122.   (help @copyfiles-help)
  123.   (source ("%s.Slave" @app-name ))
  124.   (dest #dest)
  125. )
  126. (if
  127.   (exists #readme-file)
  128.   (copyfiles
  129.     (help @copyfiles-help)
  130.     (source #readme-file)
  131.     (dest #dest)
  132.   )
  133. )
  134. (if
  135.   (exists ("%s.info" #readme-file))
  136.   (copyfiles
  137.     (help @copyfiles-help)
  138.     (source ("%s.info" #readme-file))
  139.     (dest #dest)
  140.   )
  141. )
  142.  
  143. (copyfiles
  144.   (help @copyfiles-help)
  145.   (source ("%s.islave" @app-name))
  146.   (dest #dest)
  147. )
  148.  
  149. (working)
  150. (run ("CD \"%s\"\nRawDIC SLAVE=%s.islave SOURCE=%s%s\nDelete %s.islave" #dest @app-name #CI_drive #ignore @app-name))
  151.  
  152. (if
  153.   (exists (tackon #dest #last-file))
  154.   ("")
  155.   (abort "Diskimaging was not successful!\nRawDIC was unable to create all needed files!")
  156. )
  157.  
  158. ;----------------------------
  159.  
  160. (run ("Delete %s ALL QUIET FORCE" #cleanup))    ;delete temporary files
  161.  
  162. (exit)
  163.